                                  --------------------SUPER MENU--------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////




////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
SPECIAL THANKS to Keith Middlebrook AKA Keebo for " userctrl" lesson
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
INFO    author: Redas Truikys
          country: Lithuania
               year: 2005
            e-mail: redas@tiltas.lt
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
LICENSE AGREEMENT  Free!
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
HOW TO USE 

1 STEP: copy this folders  
 "exitfiles"	
 "saveloadfiles"	
 "mainmenufiles"
 "optionsfiles"	
 "audiofiles"
 "ctrlfiles"
 "videofiles"			
 "helpfiles"	
to "GStudio" folder (c:\program files\GStudio6\work\...).

2 STEP: after all of the other includes in your game wdl, type:
include <controls.wdl>;

3 STEP: towards the beginning of  your function "main()", type:
init_controls();

it should look something like this:
main()
{
init_controls();
...
}


4 STEP: type this lines
targetstart();
startcompass();
ismeniu();
at the end of your function "main()"


it should look something like this:
main()
{
init_controls();
...
targetstart();
startcompass();
ismeniu();
}

5 STEP: save your game wdl

6 STEP: copy file "menu.wdl"( from "super menu" folder)  to "template" folder (replace existing file)

7 STEP: just have the FUN!!!

8 Note: Call function "main_menu_toggle"  to turn on main menu
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
